You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

page.tsx 345B

1234567891011121314
  1. 'use client'
  2. import React from 'react'
  3. import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
  4. import AuthenticatedLayout from '../../components/authenticated-layout'
  5. const Chat = () => {
  6. return (
  7. <AuthenticatedLayout>
  8. <ChatWithHistoryWrap />
  9. </AuthenticatedLayout>
  10. )
  11. }
  12. export default React.memo(Chat)